From a35ca4c7139057ed47db9063a4cf77987b0abef8 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Sat, 19 Jul 2025 02:22:16 +0100 Subject: [PATCH] mesa: requires libatomic also on older ARM and ARMEB platforms Add dependency on libatomic also for non-ARMv6 ARM targets as well as big-endian ARM (xscale). Obviously they are all unlikely to ever actually use Mesa. Signed-off-by: Daniel Golle --- libs/mesa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/mesa/Makefile b/libs/mesa/Makefile index b7f5805..a3f3c9d 100644 --- a/libs/mesa/Makefile +++ b/libs/mesa/Makefile @@ -64,7 +64,7 @@ define Package/mesa/Default SECTION:=libs CATEGORY:=Libraries SUBMENU:=Video - DEPENDS:=+(powerpc||mips||mipsel):libatomic + DEPENDS:=+((arm&&!arm_v7)||armeb||powerpc||mips||mipsel):libatomic TITLE:=Mesa3D URL:=https://www.mesa3d.org endef -- 2.30.2